home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Tools / SFX-Player / Mod / 303tracker / Program / Rexx / Sam2Octamed.rexx next >
OS/2 REXX Batch file  |  2000-05-08  |  421b  |  20 lines

  1. /* -------------------------------------------- */
  2. /* This script saves the current sample to disk */
  3. /* and then loads it into Octamed Soundstudio   */
  4. /* -------------------------------------------- */
  5.  
  6. OPTIONS RESULTS
  7. PARSE ARG
  8.  
  9. name='303temp:Sam2Octamed.sample'
  10.  
  11. ADDRESS 303TRACKER_REXX
  12. 303_REPORT_UFOS ON
  13. 303_SETSAMPTYPE 1
  14. 303_SAVESAMPLE name
  15. 303_TO_BACK
  16.  
  17. ADDRESS OCTAMED_REXX
  18. WI_OCTAMEDTOFRONT
  19. IN_LOAD name NOSLIST
  20.